net/http.Transport.idleConn (field)
13 uses
net/http (current package)
transport.go#L100: idleConn map[connectMethodKey][]*persistConn // most recently used at end
transport.go#L900: m := t.idleConn
transport.go#L901: t.idleConn = nil
transport.go#L1137: if t.idleConn == nil {
transport.go#L1138: t.idleConn = make(map[connectMethodKey][]*persistConn)
transport.go#L1140: idles := t.idleConn[key]
transport.go#L1149: t.idleConn[key] = append(idles, pconn)
transport.go#L1200: if list, ok := t.idleConn[w.key]; ok {
transport.go#L1240: t.idleConn[w.key] = list
transport.go#L1242: delete(t.idleConn, w.key)
transport.go#L1277: pconns := t.idleConn[key]
transport.go#L1284: delete(t.idleConn, key)
transport.go#L1295: t.idleConn[key] = pconns[:len(pconns)-1]
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |